home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000398_news@newsmaster….columbia.edu _Fri Aug 21 08:43:32 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id IAA18901
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 21 Aug 1998 08:43:31 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id IAA25377
  7.     for kermit.misc@watsun; Fri, 21 Aug 1998 08:43:31 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  9. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Using server mode with K95 and TCP/IP network
  12. Date: 21 Aug 1998 12:43:29 GMT
  13. Organization: Columbia University
  14. Lines: 47
  15. Message-ID: <6rjq1h$h2l$1@apakabar.cc.columbia.edu>
  16. References: <35DB7B52.FCC7A319@uq.net.au>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9124
  19.  
  20. In article <35DB7B52.FCC7A319@uq.net.au>,
  21. Rob Irvine  <robi@hastdeer.com.au> wrote:
  22. : I am trying to have a PC using K95 startup in server mode, and then
  23. : allow a Unix system use Kermit to send it files in separate kermit
  24. : sessions, and for the PC to stay in server mode continuously.
  25. : I have disabled bye and finish on the server PC but get a screen of Ts
  26. : at the end of the first Unix kermit session.  Then I cannot start
  27. : another Unix kermit session successfully and have to abort the K95 job.
  28. : If I don't disable bye and/or finish I get the K95 server session
  29. : stopping at the end of each Unix kermit session or at the end of the
  30. : file send command.
  31. : I have been successful in using this concept with a PC using Dos Kermit
  32. : and a com1 port being in server mode to a Unix kermit session/s.
  33. : Any advice would be appreciated.
  34.  
  35. It is one thing to lock a Kermit in SERVER mode when you have a 
  36. direct serial port connection that is not going to come and go.
  37. However, this is a very bad idea when accepting incoming TCP/IP 
  38. connections.  You do not provide a lot of information but I assume
  39. you are attempting to perform the following:
  40.  
  41.   SET NETWORK TYPE TCP/IP
  42.   WHILE TRUE {
  43.     SET HOST /SERVER * 6000
  44.     HANGUP 
  45.   }
  46.  
  47. This answers an incoming connection on port 6000 and auto-starts 
  48. SERVER mode.  When the connection drops, it waits for the next
  49. call.  This is necessary because each new connection is going to
  50. be on a different incoming TCP/IP port.  So the old port must be 
  51. closed.  
  52.  
  53. There is a bug related to SET SERVER TIMEOUT and SET SERVER IDLE-TIMEOUT
  54. in 1.1.17 that is producing the 'T's that you are seeing.
  55.  
  56.  
  57.  
  58.  
  59.     Jeffrey Altman * Sr.Software Designer * Kermit-95 for Win32 and OS/2
  60.                  The Kermit Project * Columbia University
  61.               612 West 115th St #716 * New York, NY * 10025
  62.   http://www.kermit-project.org/k95.html * kermit-support@kermit-project.org